home *** CD-ROM | disk | FTP | other *** search
/ Computer Arts Interactive 4 / CARTS4.iso / mac / MiniCad 6.0.1 demo / MiniCad 6.0.1 Demo / MiniCad 6.0.1 Demo.rsrc / STR#_7014.txt < prev    next >
Text File  |  1996-03-22  |  1KB  |  41 lines

  1. Converts all characters in V to uppercase.
  2.  
  3. UprString(VAR V : STRING);
  4.  
  5. Converts a REAL value into a STRING.  The numeric value will be displayed in the current unit settings of the drawing.
  6.  
  7. Num2StrF(V : REAL) : STRING;
  8.  
  9. Converts a REAL value to a STRING.
  10.  
  11. Num2Str(DecimalPlace : INTEGER;  V : REAL) : STRING;
  12.  
  13. Converts numeric string value to a real number.
  14.  
  15. Str2Num(s : STRING) : REAL;
  16.  
  17. Insert Source into Dest at location Dest[Index].
  18.  
  19. Insert(Source : STRING; VAR Dest : STRING; Index : INTEGER);
  20.  
  21. Removes Count characters from Source beginning at Source[Index].
  22.  
  23. Delete(VAR Source : STRING;  Index, Count : INTEGER);
  24.  
  25. Returns a string containing count characters from source, beginning at source[Index].
  26.  
  27. Copy(Source : STRING;  Index, Count : INTEGER) : STRING;
  28.  
  29. Concatenates all the parameters in the order they are written and returns the concatenated string.
  30.  
  31. Concat(Str1, ..., Strn : STRING) : STRING;
  32.  
  33. Searches for SubStr within Str and returns an integer value that is the index of the first character of SubStr within Str.
  34.  
  35. Pos(SubStr, Str : STRING) : INTEGER;
  36.  
  37. Returns the number of characters in v.
  38.  
  39. Len(v : STRING) : INTEGER;
  40.  
  41.